home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / rwmnu326.arc / COPY.MNU next >
Text File  |  1991-02-08  |  3KB  |  133 lines

  1. ,-------------------------------------------------------------------------
  2. 017 -- BackGround Color
  3. 017 -- Selection Color
  4. 04f -- Page title color
  5. 017 -- The color of the letters (A-I)
  6. 04f -- The color of the program title line
  7. 070 -- The color of the HIGHLIGHT BAR
  8. 017 -- The color of the date & TIME
  9. 017 -- The color of the NUM, CAPS, and SCROLL
  10. 017 -- The PAGE MESSAGE color
  11. 002 -- The static input color
  12. 001 -- The ESCape to DOS value
  13. ,-------------------------------------------------------------------------
  14. ,
  15. ~COPY PROGRAMS
  16. :FLOP2FXT
  17. ?Copy a file from diskette to fixed disk
  18. ]Choose which directory to copy the file(s) to.
  19. ]Type ESC to return to the MENU.
  20. ]
  21. ]
  22. [[Your Directory here
  23. [[Your Directory here
  24. ]
  25. ]
  26. ]Which disk drive has the file(s) to be copied?
  27. ]
  28. ]
  29. [[A:
  30. [[B:
  31. ]
  32. ]
  33. ]Now type the name of the file(s) to copy. Type *.* to copy all the files.
  34. ]
  35. ]
  36. [
  37. \copy %2\%3 c:\data\%1\%3
  38. \m copy.mnu
  39. ,...............................................
  40. :FXT2FLOP
  41. ?Copy a file from fixed disk to diskette.
  42. ]Choose the directory to copy the file(s) from.
  43. ]
  44. [[Your directory here
  45. [[Your directory here
  46. ]
  47. ]
  48. ]Which drive do you wish to copy the file(s) to?
  49. ]
  50. ]
  51. [[A:
  52. [[B:
  53. ]
  54. ]
  55. ]Now type the name of the file(s) to copy.  Type *.* to copy all the files.
  56. ]
  57. [
  58. \cls
  59. \echo on
  60. \copy c:\data\%1\%3 %2\%3
  61. \m copy.mnu
  62. ,.......................................
  63. :CopyFlop
  64. ]Which drive has the disk you want to copy from?
  65. ]
  66. ]
  67. [[A:
  68. [[B:
  69. ]
  70. ]
  71. ]Enter the name of the file(s) to copy.  Type *.* for all the files.
  72. ]Press ESC to return to the MENU.
  73. ]
  74. ]
  75. [
  76. ]
  77. ]
  78. ]Which drive do you want to copy the files to?
  79. ]
  80. ]
  81. [[A:
  82. [[B:
  83. \echo off
  84. \cls
  85. \echo ╔═════════════════════════════════════╗
  86. \echo ║  Insert diskette to be copied from  ║
  87. \echo ║                                     ║
  88. \echo ║  into DRIVE %1, then press ANY key  ║
  89. \echo ╚═════════════════════════════════════╝
  90. \pause >nul
  91. \echo 
  92. \echo 
  93. \echo 
  94. \echo on
  95. \copy %1%2 c:\data\temp\%2
  96. \@echo off
  97. \echo ╔═════════════════════════════════════╗
  98. \echo ║  Insert diskette to be copied to    ║
  99. \echo ║                                     ║
  100. \echo ║  into DRIVE %3, then press ANY key  ║
  101. \echo ╚═════════════════════════════════════╝
  102. \pause >nul
  103. \echo 
  104. \echo 
  105. \echo 
  106. \echo on
  107. \copy c:\data\temp\%2 %3
  108. \echo Y | del c:\data\temp\*.*
  109. \d:\app\menu\m copy.mnu
  110. ,.......................................
  111. :Exit to DOS
  112. \echo off
  113. \cls
  114. \path=c:\;c:\prog\dos;c:\prog\menu
  115. \append c:\prog\dos
  116. \echo Type `M' to return to the MAIN MENU
  117. \echo 
  118. \prompt=$p$g
  119. \c:
  120. \cd\
  121. ,.......................................
  122. :EXECUTE ANY DOS COMMAND
  123. ]Enter any valid DOS command on the line below.
  124. ]Press ESC to return to the MENU.
  125. ]
  126. [
  127. \cls
  128. \%1
  129. \m copy.mnu
  130. :RETURN TO THE MAIN MENU
  131. >rwmenu.mnu
  132. !END OF COPY.MNU
  133.